home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 Extra / Chip_Extra_1999.iso / share / aktuell / mimarzip / m8vcs99.exe / MimarSinan ACE Wrapper (ACE) / ace12b / UNACESRC / UNIX / README.TXT < prev   
Encoding:
Text File  |  1998-07-03  |  537 b   |  27 lines

  1. To compile under unix:
  2.  
  3. 1) Copy the contents of this directory to the source files
  4. 2) Check the makefile and select a suitable set of CFLAGS
  5. 3) 'make dep'
  6. 4) 'make'
  7.  
  8. If the resulting 'unace' can't process any archives it might be
  9. because the machine you are using isn't using the same byte-order
  10. as Intel CPUs. In that case you need to replace
  11.  
  12. #if defined(UNIX)
  13.   #define DIRSEP '/'
  14.   #define LO_HI_BYTE_ORDER
  15. #endif
  16.  
  17. in os.h with
  18.  
  19. #if defined(UNIX)
  20.   #define DIRSEP '/'
  21.   #define HI_LO_BYTE_ORDER
  22. #endif
  23.  
  24. Good luck.
  25.  
  26. /Mikael Nordqvist
  27.